home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000086_news@columbia.edu_Sun Apr 9 13:02:07 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19198
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sun, 9 Apr 1995 23:46:29 -0400
  3. Received: by apakabar.cc.columbia.edu id AA02952
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sun, 9 Apr 1995 23:46:27 -0400
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Problem with Get/Send over tcp/ip
  9. Message-Id: <1995Apr9.190207.47027@cc.usu.edu>
  10. Date: 9 Apr 95 19:02:07 MDT
  11. References: <3m9l67$ans@pirates.cs.swt.edu>
  12. Organization: Utah State University
  13. Lines: 50
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3m9l67$ans@pirates.cs.swt.edu>, tm@astros.cs.swt.edu (Tom F McCabe) writes:
  17. > I'm able to use ms-kermit to connect to our alpha
  18. > which is running c-Kermit 5a(190) Beta .  Ms-kermit
  19. > terminal emulation works fine -  the problem is when 
  20. > I try to get/send files.
  21. > If I leave the lines:
  22. >     set port tcp/ip nyssa.swt.edu
  23. >     connect
  24. > in my mscustom.ini file
  25.     One really ought not do a CONNECT in the startup file
  26. because that invokes the TCP/IP session right away, leaving
  27. no time to do local setup busywork. The session will timeout
  28. if you don't login/password at that point.
  29.  
  30. > then I connect to nyssa just fine, run c-kermit on
  31. > the alpha and type server to the alpha. All is ok. 
  32. > But when I try to then do a send/get no packets are
  33. > and the send/get eventually times out.
  34.  
  35.     This works perfectly, so we can guess there is more
  36. going on at your desktop than what you describe. Once C Kermit
  37. is in SERVER mode press ALT-X on your PC, then issue the send/get
  38. commands. Make sure no other macros or script commands have
  39. intervened to change the comms channel to a serial port. Do
  40. a SHOW COM before get/send to verify matters. I'll bet you 
  41. have a SET PORT in there somewhere after the Connect.
  42.  
  43. > However, if I take these lines out of the mscustom.ini
  44. > and type them as commands to ms-kermit after I
  45. > start it up, the send/gets  work just fine. Can anyone
  46. > tell me what's going on here.  I would just as soon
  47. > leave these lines in my mscustom.ini if I can.
  48. > A second problem:  When I try to use either the
  49. > finish or bye command from ms-kermit to exit
  50. > from the alpha after I've started the server there,
  51. > nothing happens and when I quit ms-kermit there
  52. > is ALWAYS a hanging communication line to my alpha.
  53. > Any known problems here or is it just me?
  54.     Works fine. But.... If your Alpha is running
  55. VMS Virtual Terminals (VT types) then they normally 
  56. don't sense the end of a session and quit; they persist 
  57. and persist with C Kermit still running. Best to remove
  58. the VT support as a pain.
  59.     FINISH does not close down connections, but BYE
  60. does. VMS VT's don't respond well when the application
  61. (C Kermit in this case) tries to shut down the link.
  62.     Joe D.